物件與純值


Posted by hoyi-23 on 2021-06-21

物件與純值最大的差別就是: 純值不能新增屬性

物件新增屬性

var family = {};
family.name = 'Ray';
console.log(family); //物件
console.log(family['name']); // 'Ray'

純值新增屬性 (錯誤)

var num = 10;
console.log(num); //10
num.name = 'Ray';
console.log(num.name); //undefined

純值不允許新增屬性

JavaScript 只有兩種型別: 物件 與 純值

純值:

  1. String
  2. Boolean
  3. Number
  4. Undefined
  5. Null

#物件 #純值







Related Posts

What Type of Laser Engraving Machine Should be Used for Stainless Steel Engraving?

What Type of Laser Engraving Machine Should be Used for Stainless Steel Engraving?

JS30 Day 4 筆記

JS30 Day 4 筆記

學習 Git (1) - 安裝 Git & 基本設定

學習 Git (1) - 安裝 Git & 基本設定


Comments